home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
CD-ROM Data 2002 May
/
CD Rom Data Mayıs 2002.iso
/
Freeware
/
Blitz Basic
/
data1.cab
/
Support
/
help
/
samples
/
shootemup
/
includes
/
points.h
< prev
next >
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
Macintosh to JP
NeXTSTEP
RISC OS/Acorn
Shift JIS
UTF-8
Wrap
Text File
|
2002-04-10
|
327 b
|
20 lines
Function addpoints(amount)
ply_points=ply_points+amount
End Function
Function drawpoints(x,y,value)
; SetBuffer ImageBuffer(hudbufferimg)
; DrawImage hudimg,0,0
For f=1 To Len(value)
vl=Mid$(value,f,1)
DrawImage fontnumbers,x+xpf,y,vl
xpf=xpf+8
Next
; SetBuffer BackBuffer()
End Function